/* common */
html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
}

body.no-scroll, body.noScroll {
    overflow: hidden;
}

body {
    color: #1e4255;
    background: #f6f9fb;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
}

#wrapper {
    -ms-flex: 1 0 auto;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    min-height: 100%;
}

a {
    color: #1e4255;
}

a:hover,
a:focus {
    color: #379bd6;
}

a.readmore {
    display: inline-block;
    color: #379bd6;
    position: relative;
    background-image: url("../images/icon-rd.png");
    background-image: -webkit-image-set(
            url("../images/icon-rd.png") 1x,
            url("../images/icon-rd@2x.png") 2x
    );
    background-image: image-set(
            url("../images/icon-rd.png") 1x,
            url("../images/icon-rd@2x.png") 2x
    );
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 25px;
}

a.readmore.white {
    color: #fff;
    background-image: url("../images/icon-rd-w.png");
    background-image: -webkit-image-set(
            url("../images/icon-rd-w.png") 1x,
            url("../images/icon-rd-w@2x.png") 2x
    );
    background-image: image-set(
            url("../images/icon-rd-w.png") 1x,
            url("../images/icon-rd-w@2x.png") 2x
    );
}

.eq-button,
.btn-primary,
.btn-secondary,
.rsform-submit-button {
    border-radius: 50px;
}

.eq-button-primary,
.btn-primary,
.rsform-submit-button {
    background: #e7be29;
    border-color: #e7be29;
    transition: all .8s;
    color: #fff;
}

.btn-primary,
.btn-secondary,
.rsform-submit-button {
    display: inline-block;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0 40px;
    line-height: 58px;
    font-size: 1rem;
    outline: none;
    border: none;
    width: 100%;
}

.eq-button-primary:hover,
.eq-button-primary:focus,
.btn-primary:hover,
.btn-primary:focus,
.rsform-submit-button {
    background: #e7be29;
}

.eq-button-white,
.eq-button-white:hover,
.eq-button-white:focus {
    background: #ffffff;
    border-color: #ffffff;
    color: #369ad8;
}

.button-blue {
    border-radius: 8px;
    background-color: #379bd6;
    color: #fff;
}

.grid {
    margin-left: -20px;
    margin-bottom: -20px;
    width: -webkit-calc(100% + 20px);
    width: -moz-calc(100% + 20px);
    width: calc(100% + 20px);
}

.grid > div {
    padding-bottom: 20px;
    padding-left: 20px;
}

.grid-medium {
    margin-left: -40px;
    margin-bottom: -40px;
    width: -webkit-calc(100% + 40px);
    width: -moz-calc(100% + 40px);
    width: calc(100% + 40px);
}

.grid-medium > div {
    padding-bottom: 40px;
    padding-left: 40px;
}

hr {
    border: none;
    border-top: 1px solid #efedf3;
}

ul {
    padding-left: 20px;
}

ul.no-style {
    list-style: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

ul.no-style li {
    position: relative;
}


ul.col4 li {
    width: 25%;
    padding: 2px;
}

.module {
    padding-top: 30px;
    padding-bottom: 30px;
}

.module.white {
    color: #fff;
}

/* modal */
.modal-panel {
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
}

.cover-container {
    background: #fff;
    padding: 15px;
    margin: 30px auto;
    width: 95%;
    max-width: 880px;
    overflow: hidden;
}

.wechat-model .cover-container {
    padding: 0 !important;
    background: none;
    max-width: 728px;
}

.close {
    width: 30px;
    height: 30px;
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 102;
    cursor: pointer;
    border-radius: 30px;
    background: rgba(0, 0, 0, 0.5);
}

.close:before,
.close:after {
    content: '';
    height: 1px;
    width: 20px;
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    top: 15px;
    right: 5px;
}

.close:before {
    transform: rotate(45deg);
}

.close:after {
    transform: rotate(-45deg);
}

/* 设置动画时避免滑动栏 */
.module .eq-row {
    overflow: hidden;
}

.module .title i {
    font-style: normal;
    color: #9fb1be;
    font-size: 26px;
    line-height: 26px;
    font-weight: 100;
    display: block;
}


.module .title span {
    color: #379bd6;
    font-weight: bold;
}

.module .title h3 {
    display: inline-block;
    position: relative;
    font-weight: normal;
}

.module .title h3::after {
    position: absolute;
    top: 0;
    right: -20px;
    content: '';
    border-left: 10px solid #fcd33d;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    -ms-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.module.white .title i,
.module.white .title span {
    color: rgba(255, 255, 255, 0.8);
}

/* animation */
.animation {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.fadeInUp {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
    transition: transform 1s .25s cubic-bezier(0, 1, .3, 1), opacity 1s .25s ease-out;
}

.hero-banner.home .fadeInUp {
    transition: all 1s 0.8s ease-out !important;
}

.fadeInUp.is-visible {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.fadeInDown {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
}

.fadeInDown.is-visible {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.fadeInLeft {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    transition: transform 4s .25s cubic-bezier(0, 1, .3, 1), opacity .3s .25s ease-out;
}

.fadeInLeft.is-visible {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.fadeInRight {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    transition: transform 4s .25s cubic-bezier(0, 1, .3, 1), opacity .3s .25s ease-out;
}

.fadeInRight.is-visible {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slideInTopRight {
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
    transition: all 1.2s ease-out !important;
}

.slideInTopRight.is-visible {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


.slideInTopLeft {
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
    transition: all 0.8s ease-out !important;
}

.slideInTopLeft.is-visible {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slideInBottomRight {
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
}

.slideInBottomRight.is-visible {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transition: all 1s ease-out !important;
}


@-webkit-keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(0.7);
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateX(0px) scale(0.7);
        transform: translateX(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(0.7);
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateX(0px) scale(0.7);
        transform: translateX(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.backInRight.is-visible {
    -webkit-animation-name: backInRight;
    animation-name: backInRight;
}

.eq-card-shadow {
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.08);
}

fieldset {
    padding: 0;
    border: none;
}

input,
textarea {
    width: 100%;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    /*box-shadow: inset 0 0 5px 0 rgba(27, 26, 51, 0.1);*/
    height: 48px;
    padding: 5px 20px;
    border: 1px solid #dde0e2;
    background: #f6f9fb;
    border-radius: 8px;
    outline: none; /* 去掉默认点击颜色边框 */
    resize: none;
    -webkit-transition: border 0.25s ease-in;
    -moz-transition: border 0.25s ease-in;
    -o-transition: border 0.25s ease-in;
    transition: border 0.25s ease-in;
}

input:focus,
textarea:focus {
    border-color: #379bd6;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    box-shadow: none;
    height: auto;
}

textarea {
    height: auto;
}

.eq-form-horizontal .eq-label {
    padding-top: 0;
}

.card-height {
    height: 100%;
}

.img-width {
    width: 100%;
}


ul.tab {
    overflow: hidden;
    margin-top: 25px;
    margin-bottom: 20px;
}

ul.tab > li {
    width: calc(25% + 2px);
    text-align: center;
}

ul.tab > li {
    border-left: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    margin-left: -2px;
    margin-top: -2px;
}

ul.tab > li > a {
    display: block;
    background: #fff;
    text-align: center;
    padding: 10px 5px;
}

ul.tab > li:last-child > a {
    border: none;
}

ul.tab.col5 > li {
    width: 20%;
}

ul.tab.col5 > li > a {

}

ul.tab > li > a h6 {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0;
    margin-top: 10px;
}

ul.tab.toggle-img > li a:hover,
ul.tab.toggle-img > li.active a {
    background: #379bd6;
    color: #fff;
}

ul.tab.toggle-img > li a img:nth-child(2) {
    display: none;
}

ul.tab.toggle-img > li a:hover img:nth-child(1),
ul.tab.toggle-img > li.active a img:nth-child(1) {
    display: none;
}

ul.tab.toggle-img > li a:hover img:nth-child(2),
ul.tab.toggle-img > li.active img:nth-child(2) {
    display: inline-block;
}

.light-bg {
    background: url("../images/light-bg.png") left center/cover no-repeat;
}

header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 48px;
    transform: translateY(0);
    transition: all 0.5s ease-out;
}

header.open {
    height: 100%;
    background: rgba(255, 255, 255, 1);
}

header.hide {
    transform: translateY(-100%);
}

header.toggle {
    background: rgba(255, 255, 255, 0.8);
}

#logo {
    background: url("../images/logo-w.png") no-repeat left center/150px;
    background-image: -webkit-image-set(
            url("../images/logo-w.png") 1x,
            url("../images/logo-w@2x.png") 2x
    );
    background-image: image-set(
            url("../images/logo-w.png") 1x,
            url("../images/logo-w@2x.png") 2x
    );
    display: block;
    text-indent: -99999px;
    float: left;
    height: 30px;
    width: 150px;
    margin-top: 10px;
}

#pull {
    position: absolute;
    right: 15px;
    top: 0;
    display: block;
    padding: 12px;
    z-index: 1;
    width: 48px;
    height: 48px;
}

#pull::before,
#pull::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 20px;
    background: #fff;
    left: 50%;
    margin-left: -10px;
    top: 50%;
    transition: all .5s ease-in-out;
}

header:not(.open) #pull::before {
    top: calc(50% - 4px);
}

header:not(.open) #pull::after {
    top: auto;
    bottom: calc(50% - 4px);
}


header.open #pull::before,
header.open #pull::after,
header.sub #pull::before,
header.sub #pull::after,
header.toggle #pull::before,
header.toggle #pull::after,
header.sub.open #pull::before,
header.sub.open #pull::after,
header.sub.toggle #pull::before,
header.sub.toggle #pull::after {
    background: #1e4255;
}


header.open #pull::before {
    transform: rotate(45deg);
}

header.open #pull::after {
    transform: rotate(-45deg);
}

ul.nav,
ul.nav li ul,
.nav-list ul,
ul.pagination {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.nav {
    clear: both;
    position: absolute;
    top: 0;
    transform: translateY(50px);
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    text-align: left;
    width: 80%;
    opacity: 0;
    transition: opacity 0.5s ease-out 0.2s;
    display: none;
}

header.open ul.nav {
    opacity: 1;
    display: block;
    overflow: scroll;
}

ul.nav li {
    position: relative;
}

ul.nav li.parent::before,
ul.nav li.parent::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 8px;
    background: #fff;
    top: 28px;
    right: 0;
    transform-origin: 0;
}

ul.nav li.parent::before {
    transform: rotate(225deg);
}

ul.nav li.parent::after {
    transform: rotate(-45deg);
}

ul.nav li a {
    color: #fff;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 48px;
}

ul.nav li a:hover,
ul.nav li.active > a {
    opacity: 0.85;
}

ul.nav li ul {
    display: none;
}

ul.nav li.toggle ul {
    display: block;
}

ul.nav li ul li a {
    padding-left: 20px;
}

header.sub ul.nav li > a,
header.toggle ul.nav li > a,
header.open ul.nav li > a {
    color: #1e4255;
}

header.sub ul.nav li.parent::before,
header.toggle ul.nav li.parent::before,
header.open ul.nav li.parent::before,
header.sub ul.nav li.parent::after,
header.toggle ul.nav li.parent::after,
header.open ul.nav li.parent::after {
    background: #1e4255;
}

header.sub #logo,
header.toggle #logo,
header.sub.toggle #logo,
header.open #logo,
header.sub.open #logo {
    background-image: url("../images/logo.png");
    background-image: -webkit-image-set(
            url("../images/logo.png") 1x,
            url("../images/logo@2x.png") 2x
    );
    background-image: image-set(
            url("../images/logo.png") 1x,
            url("../images/logo@2x.png") 2x
    );
}

.hero-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 750px;
    background: no-repeat center/cover;
}

.hero-banner .title {
    color: #fff;
    margin: 18% auto;
    position: relative;
    z-index: 10;
    padding: 0 15px;
    text-align: left;
}


.hero-banner .title h6,
.module .title h6 {
    font-weight: normal;
    margin-bottom: 0;
}

/* home */

.eq-slideshow-items li {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}


.eq-slidenav-previous,
.eq-slidenav-next {
    width: 21px;
    height: 35px;
    background: rgba(0, 0, 0, 0.5);
    left: 10px;
}


.eq-slidenav-next {
    left: auto;
    right: 10px;
}

.eq-slidenav-previous::before,
.eq-slidenav-previous::after,
.eq-slidenav-next::before,
.eq-slidenav-next::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 12px;
    background: #fff;
    top: 16px;
    left: 5px;
    -webkit-transform-origin: 95%;
    -ms-transform-origin: 95%;
    -moz-transform-origin: 95%;
    -o-transform-origin: 95%;
    transform-origin: 95%;
}

.eq-slidenav-previous::before,
.eq-slidenav-previous::after {
    -webkit-transform-origin: 5%;
    -ms-transform-origin: 5%;
    -moz-transform-origin: 5%;
    -o-transform-origin: 5%;
    transform-origin: 5%;
}

.eq-slidenav-next::before,
.eq-slidenav-previous::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.eq-slidenav-next::after,
.eq-slidenav-previous::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}




.eq-slideshow-items li:nth-child(1) {
    background-image: url("https://www.besesun.com/images/9999.jpg");
}
.eq-slideshow-items li:nth-child(2) {
    background-image: url("https://www.besesun.com/images/11111.jpg");
}

/*

.eq-slideshow-items li:nth-child(2) {
    background-image: url("../slides/home-slide1.jpg");
}

.eq-slideshow-items li:nth-child(3) {
    background-image: url("../slides/home-slide2.jpg");
}

.eq-slideshow-items li:nth-child(4) {
    background-image: url("../slides/home-slide3.jpg");
}

.eq-slideshow-items li:nth-child(5) {
    background-image: url("../slides/home-slide4.jpg");
}
*/
.clients .tab-content {
    background: #379bd6 url("../images/logos-bg.jpg") center/cover;
}

.home-service h6,
.home-service p {
    margin-bottom: 10px;
}

.home-service .eq-card-body {
    margin-top: 10px;
    margin-bottom: 10px;
}

ul.logos {
    padding: 20px 0;
}

.hero-banner.home {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.advantage {
    color: #fff;
    background: #fff;
}

.advantage .info {
    background: url("../images/advantage-bg.jpg") center/cover;
    padding: 5%;

}

.slick-prev:before, .slick-next:before {
    color: #000;
}


/**
https://codepen.io/aybukeceylan/pen/RwrRPoO
 */
.zizhis,
.rongyus {
    position: relative;
    left: 50%\0; /* 修复 ie，不能有空格\0前  */
}

.zizhi-sliders,
.rongyu-sliders {
    overflow: hidden;
    min-height: 310px;
    padding: 30px;
}

.rongyu-sliders {
    min-height: 205px;
}

.zizhi-sliders input,
.rongyu-sliders input {
    display: none;
}

.rongyus .ry-item-label,
.zizhis .item-label {
    position: absolute;
    margin: auto;
    transition: transform .4s ease;
    cursor: pointer;
}

/* 2 */
#item-1:checked ~ .zizhis #zizhi-2,
#item-2:checked ~ .zizhis #zizhi-3,
#item-3:checked ~ .zizhis #zizhi-4,
#item-4:checked ~ .zizhis #zizhi-1,
#ry-item-1:checked ~ .rongyus #rongyu-2,
#ry-item-2:checked ~ .rongyus #rongyu-3,
#ry-item-3:checked ~ .rongyus #rongyu-4,
#ry-item-4:checked ~ .rongyus #rongyu-1 {
    transform: translate(-60%, -5%) scale(.8);
    z-index: 3;
}

/* 3 */
#item-1:checked ~ .zizhis #zizhi-3,
#item-2:checked ~ .zizhis #zizhi-4,
#item-3:checked ~ .zizhis #zizhi-1,
#item-4:checked ~ .zizhis #zizhi-2,
#ry-item-1:checked ~ .rongyus #rongyu-3,
#ry-item-2:checked ~ .rongyus #rongyu-4,
#ry-item-3:checked ~ .rongyus #rongyu-1,
#ry-item-4:checked ~ .rongyus #rongyu-2 {
    transform: translate(-110%, -10%) scale(.6);
    z-index: 2;
}

/* 4 */
#item-1:checked ~ .zizhis #zizhi-4,
#item-2:checked ~ .zizhis #zizhi-1,
#item-3:checked ~ .zizhis #zizhi-2,
#item-4:checked ~ .zizhis #zizhi-3,
#ry-item-1:checked ~ .rongyus #rongyu-4,
#ry-item-2:checked ~ .rongyus #rongyu-1,
#ry-item-3:checked ~ .rongyus #rongyu-2,
#ry-item-4:checked ~ .rongyus #rongyu-3 {
    transform: translate(-140%, -16%) scale(.6);
    z-index: 1;
}

/* 外面位置 1 */
#item-1:checked ~ .zizhis #zizhi-1,
#item-2:checked ~ .zizhis #zizhi-2,
#item-3:checked ~ .zizhis #zizhi-3,
#item-4:checked ~ .zizhis #zizhi-4,
#ry-item-1:checked ~ .rongyus #rongyu-1,
#ry-item-2:checked ~ .rongyus #rongyu-2,
#ry-item-3:checked ~ .rongyus #rongyu-3,
#ry-item-4:checked ~ .rongyus #rongyu-4 {
    z-index: 4;
}

.eq-icon-navbar-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    height: 440px;
    text-align: center;
    overflow: hidden;
}


.eq-icon-navbar {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 20px;
}

.pingjia img {
    margin-right: 10px;
}

ul.news-tabs > li {
    width: auto;
    border: none;
}

ul.news-tabs > li a {
    margin: 5px;
    background: #dde6eb;
    color: #1e4255;
    padding: 5px 10px;
}

.mod-articlesnews {
    margin: 20px auto;
}

.mod-articlesnews .newsflash-info {
    margin-top: 20px;
}


/* 翻译语种 */
.hero-banner.translation {
    background-image: url("../images/slide-translation.jpg");
}

.languages-flats p {
    color: #1e4255;
    margin-bottom: 10px;
}

ul.languages-flats li img {
    width: 120px;
}

/* 服务领域 */
.hero-banner.metallurgy {
    background-image: url("../images/slide-ferrous.jpg");
}

.hero-banner.engine {
    background-image: url("../images/slide-engine.jpg");
}

.hero-banner.make {
    background-image: url("../images/slide-make.jpg");
}

.hero-banner.petrochemical {
    background-image: url("../images/slide-petrochemical.jpg");
}

.hero-banner.it {
    background-image: url("../images/slide-it.jpg");
}

.hero-banner.financial {
    background-image: url("../images/slide-financial.jpg");
}

.hero-banner.patent {
    background-image: url("../images/slide-patent.jpg");
}

.hero-banner.bio {
    background-image: url("../images/slide-bio.jpg");
}

.hero-banner.publish {
    background-image: url("../images/slide-publish.jpg");
}

ul.logos li {
    padding: 5px 0;
}

ul.logos li a:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    box-shadow: 0 5px 0 0 rgba(0, 0, 0, 0.5);
}

ul.logos li:last-child {
    background-color: #fff;
    width: 247px;
    height: 124px;
    line-height: 106px;
    margin-top: 5px;
    text-align: center;
}


/* 服务范围 */
.hero-banner.writer {
    background-image: url("../images/slide-writer.jpg");
}

.hero-banner.interpreter {
    background-image: url("../images/slide-interpreter.jpg");
}

.hero-banner.media {
    background-image: url("../images/slide-media.jpg");
}

.hero-banner.solution {
    background-image: url("../images/slide-solution.jpg");
}


/* 笔译服务 */

.height-fix {
    min-height: 180px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    display: block;
}

.img-round {
    position: absolute;
    position: relative\9;
    left: 50%;
    top: 50%;
    height: auto;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* 口译 */
ul.quality li img {
    margin-bottom: 10px;
}

/* 资源中心 */
.hero-banner.resource {
    background-image: url("../images/slide-resource.jpg");
}

.translator .tab-content img {
    margin: 10px;
    max-height: 100px;
}

.translator .tab-content h6,
.translator .tab-content p {
    margin-bottom: 0;
}

.translator .tab-content h5 {
    margin-top: 30px;
}

.translator .tab-content h5:first-child {
    margin-top: 0;
}

.translator ul.tab > li.active > a {
    color: #379bd6;
}


.flex-self-left {
    flex: 0 1 auto;
}

.content-wrap {
    overflow: hidden;
    max-width: 996px;
}

.translator .tab-content {
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

.translator .tab-content > section > div {
    position: relative;
    cursor: pointer;
}

.translator .tab-content > section > div > * ~ p {
    position: absolute;
    color: #fff;
    background: #179fe3;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    bottom: 0;
    right: 0;
    padding: 15px;
    overflow: hidden;
    /*transform: scale(0);*/
    height: 0;
    opacity: 0;
    transition: all 0.3s ease-out;
    z-index: 1;
    border-radius: 10px;
    word-wrap: break-word;
    align-items: center;
}

.translator .tab-content > section > div:hover > * ~ p {
    opacity: 1;
    /*transform: scale(1.1);*/
    display: flex;
    height: 100%;
}

/* about */
.hero-banner.about {
    background-image: url("../images/slide-about.jpg");
}

ul.honour {
    margin-left: 20px;
}

ul.honour li {
    background: url("../images/icon-ry.png") left center no-repeat;
    padding-left: 40px;
    line-height: 36px;
}

.moduletable.request {
    background: #369ad8 url("../images/request.png") no-repeat left center/cover;
    padding: 50px 0;
    color: #fff;
}

.moduletable.request p {
    font-size: 20px;
}

.time-line > div {
    position: relative;
}

.time-line > div::before,
.time-line > div::after {
    position: absolute;
    content: '';
}

.time-line > div::before {
    width: 08px;
    height: 08px;
    background-color: #379bd6;
    border-radius: 50%;
    z-index: 1;
}

.time-line > div::after {
    width: 1px;
    background: #bfe2f7;
    height: calc(100% + 20px);
    top: 0;
    left: 4px;
}

.time-line .eq-card {
    margin-left: 30px;
}

.time-line .eq-card ul {
    margin-left: 20px;
    padding-bottom: 20px;
}

.time-line .eq-card ul li {
    line-height: 42px;
}

.time-line .eq-card h5 {
    padding: 20px 20px 0 20px;
}


/* news */

.item-image {
    text-align: center;
}
#news .items-leading {
    padding-bottom: 30px;
}

#news .page-header h1 {
    font-size: 1.75rem;
}


#news .article-info .category-name a,
#news .article-info .published {
    font-size: 14px;
    color: #7d7d7d;
}

#news .com-content-article .item-image {
    margin-bottom: 30px;
    text-align: center;
}

.news-body {
    font-size: 16px;
}
.news-body,
#news .com-content-article__body p,
#news .com-content-article__body ul,
#news .com-content-article__body ol,
#news .com-content-article__body h1,
#news .com-content-article__body h2,
#news .com-content-article__body h3,
#news .com-content-article__body h4,
#news .com-content-article__body h5,
#news .com-content-article__body h6 {
    max-width: 700px;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

#news .com-content-article__body ul,
#news .com-content-article__body ol {
    padding-left: 40px;
}

#news .com-content-article__body a {
    color: #4d34b9;
}

#news .com-content-article__body a:hover,
#news .com-content-article__body a:focus {
    text-decoration: underline;
}


.news-items {
    overflow: hidden;
}

.news-item {
    border-top: 1px solid #efedf3;
    padding: 30px 0;
}


/* service */

.service-list {
    position: relative;
    z-index: 5;
}

.service-list h6 {
    word-break: break-word;
}

@media (max-width: 375px) {
    .service-list h6 {
        margin-bottom: 5px;
    }
}

.service-list .eq-card {
    height: 100%;
}


.service-list .eq-card-header {
    margin: 0;
    padding: 20px;
}

.service-list .eq-card-footer {
    margin-top: 0;
}

.large {
    padding: 0 40px 10px;
}

.margin-small-bottom {
    margin-bottom: 5px;
}


.service-list h6 {
    margin-bottom: 10px;
}


.process {
    background: #369ad8 url("../images/process-bg.png") no-repeat left center/cover;
    position: relative;
    z-index: 0;
}

.service-processing {
    position: relative;
}

ul.service-steps li {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-align: left;
    width: 600px;
    min-height: 120px;
}

ul.service-steps li:last-child {
    min-height: auto;
}

ul.service-steps li img {
    padding: 20px;
    width: 80px;
}

ul.service-steps li::before,
ul.service-steps li::after {
    content: '';
    position: absolute;
}

ul.service-steps li::before {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.08);
    z-index: -1;
    left: 0;
    top: 0;
}

ul.service-steps li::after {
    height: 100px;
    width: 1px;
    left: 40px;
    top: 50%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -2;
    transition: height 1.5s ease-in 1.5s;
}

ul.service-steps li:last-child::after {
    content: none;
}


ul.service-steps li .step {
    padding-left: 15px;
    position: relative;
    top: 25px;
}

svg.bottom-line {
    display: none;
}

.service-content h5 {
    margin-top: 10px;
}

ul.faq-list {
    width: 100%;
}

ul.faq-list li {
    text-align: left;
}

ul.faq-list li h6 {
    font-size: 18px;
}


@media (max-width: 568px) {
    .flex-order {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .flex-order div:nth-child(1) {
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .img-margin {
        margin-bottom: 30px;
    }
}

ul.pagination li {
    display: inline-block;
    padding: 10px;
}

ul.pagination li a {
    color: #a2a2a2;
    display: block;
}


ul.pagination li a:hover {
    color: #4d34b9;

}

/* contact */
.hero-banner.contact {
    background-image: url("../images/slide-contact.jpg");
}


div.formBody {
    float: none;
}

.rsform-block-service > label {
    display: block;
    float: none !important;
}

.rsform-checkbox {
    margin-right: 10px;
}

.rsform-upload-box {
    background: none;
    border: none;
}

.rsform-block-service .formBody label {
    margin-right: 20px;
}

.rsform-captcha-box,
.rsform-submit-button {
    width: auto;
}

.rsform-submit-button {
    min-width: 200px;
}

fieldset.eq-form-horizontal {
    padding-top: 30px;
    padding-bottom: 20px;
}

.eq-form-horizontal h6 {
    border-bottom: 1px solid #e1e4e7;
    padding-bottom: 20px;
}

/* tags */
ul.com-tags-tag__category li a {
    border-bottom: 1px solid #efedf3;
    padding: 10px 0;
    display: block;
}

#filter-search {
    margin-bottom: 20px;
}

.input-group-append .btn-primary,
.input-group-append .btn-secondary {
    width: auto;
}

/* content container page */
.content {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    word-wrap: break-word;
}

#new .com-content-article__body a {
    color: #4d34b9;
}

#new .com-content-article__body a:hover,
#new .com-content-article__body a:active {
    text-decoration: underline;
}

footer {
    padding: 40px 0;
    flex-shrink: 0; /* 页脚固底 */
}


.footer-copyright {
    border-top: 1px solid #d6dee2;
    padding-top: 20px;
}

ul.footer-accordion .accordion-title::before {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact li > a > img {
    vertical-align: -6px;
}


.copyright,
.color-scheme-toggle {
    margin-top: 30px;
}

div.mod-languages li {
    margin-left: 0;
}

div.mod-languages ul li.lang-active {
    background: none;
}

.copyright,
footer span {
    font-size: 14px;
    opacity: 0.7;
}

.nav-list {
    width: 100%;
}

.nav-list ul li {
    line-height: 36px;
}

.nav-list h6 {
    margin: 20px auto 10px;
    font-size: 16px;
}

footer .social {
    margin-top: 20px;
}

footer .social a {
    margin-right: 15px;
}


.sidebar {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

ul.sidebar-chat {
    box-shadow: 0 0 4px 0 rgba(0, 83, 138, 0.14);
    border-radius: 10px;
    margin: 0;
    padding: 10px 0;
    background: #fff;
}

ul.sidebar-chat li {
    float: left;
    width: 25%;
}

ul.sidebar-chat li p {
    margin-bottom: 0;
    font-size: 16px;
}

.wechat-qcode {
    position: absolute;
    bottom: 82px;
    right: 0;
    max-width: 200px;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
    -ms-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 0;
    transition: all .3s;
}

.wechat-qcode.open {
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    opacity: 1;
    transform: scale(1);
}


/* media */

@media (min-width: 568px) {

    .location {
        padding: 40px;
    }

    .location .eq-row:first-child {
        margin-bottom: 30px;
    }

    .mod-languages {
        text-align: right;

    }

    input[type="file"] {
        width: auto;
    }

    fieldset.eq-form-horizontal {
        padding: 60px;
    }
}


@media (min-width: 768px) {

    .col-2 {
        column-count: 2;
        -moz-column-count: 2;
        -webkit-column-count: 2;
        -ms-column-count: 2;
        column-gap: 40px;
        -moz-column-gap: 40px;
        -webkit-column-gap: 40px;
        -ms-column-gap: 40px;
    }

    ul.eq-slideshow-items {
        min-height: 500px;
    }

    .fix-width {
        max-width: 147px;
    }

    h3,
    #news .page-header h1 {
        font-size: 2.25rem;
    }

    #pull {
        height: 68px;
        width: 68px;
    }

    .grid {
        margin-left: -20px;
        margin-bottom: -20px;
    }

    .grid > div {
        padding-bottom: 20px;
        padding-left: 20px;
    }

    .module {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .margin-top {
        margin-top: 60px !important;
    }

    .cover-container {
        padding: 40px;
    }

    .control-group {
        margin-top: 30px;
    }

    ul.contact-list li a.qr-code-link {
        bottom: 19px;
    }

    .contact-form {
        padding: 40px;
    }

    .btn-primary,
    .btn-secondary {
        max-width: 240px;
    }

    ul.tab > li {
        width: 50%;
    }

    .translator ul.tab > li {
        width: 100%;
    }

    ul.news-tabs > li {
        width: auto;
    }

    .clients ul.tab > li > a h6 {
        padding-top: 57px;
        margin-left: -35px;
    }


    .clients ul.tab > li a img {
        position: absolute;
        right: 28px;
        top: 50%;
        transform: translateY(-50%);
    }

    .advantage .tab-content,
    .advantage .info,
    .advantage .process {
        height: 510px;
    }

    /*.slick-slider {*/
    /*    padding-top: 50px;*/
    /*}*/
    .mod-articlesnews .newsflash-info {
        margin-top: 0px;
        padding: 0 25px;
    }

    .mod-articlesnews h5 {
        font-size: 22px;
    }


    header {
        height: 68px;
    }

    #logo,
    header.sub.toggle #logo {
        height: 38px;
        width: 226px;
        margin-top: 15px;
        background-size: auto;
    }


    .profile > div {
        padding: 0 40px;
    }


    .eq-filter > li {
        float: left;
        width: 50%;
    }

    .com-content-category-blog__navigation {
        margin: 40px auto;
    }

    .com-content-work figcaption.caption h2 {
        margin-bottom: 10px;
    }

    #news .items-leading {
        padding-bottom: 50px;
    }

    .news-item {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    #filter-search {
        width: 50%;
        float: left;
        margin-right: 20px;
    }

    .sidebar {
        bottom: auto;
        right: 20px;
        top: 50%;
        width: auto;
        transform: translateY(-50%);
    }

    ul.sidebar-chat li {
        float: none;
        width: auto;
        padding: 10px;
    }

    .wechat-qcode {
        bottom: 0;
        right: 83px;
    }


}

@media (min-width: 1024px) {

    #pull {
        display: none;
    }

    .full-width-fix {
        width: 100%;
    }

    ul.nav {
        clear: none;
        float: right;
        display: block;
        position: relative;
        width: auto;
        opacity: 1;
        transform: none;
    }

    ul.nav > li {
        float: left;
    }

    ul.nav li.parent::before, ul.nav li.parent::after {
        top: 38px;
    }

    ul.nav li.parent::before,
    ul.nav li.parent::after {
        right: 5px;
    }

    ul.nav li a {
        border: none;
    }

    ul.nav li > a {
        line-height: 68px;
        padding: 0 25px;
    }

    ul.nav > li > ul {
        /*box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.08);*/
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        position: absolute;
        left: 50%;
        -ms-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 60px;
        width: auto;
        white-space: nowrap;
        /*padding: 10px 20px;*/
    }

    ul.nav li ul:before {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid rgba(255, 255, 255, 0.2);
        margin-left: -8px;
        top: -8px;
        left: 50%;
    }

    ul.nav li ul li {
        display: inline-block;
    }

    ul.nav li:hover ul {
        display: block;
    }

    ul.nav li ul li a,
    header.sub ul.nav li > a {
        color: #1e4255;
    }

    ul.nav li ul li a {
        line-height: 54px;
        padding: 0 20px;
        color: #fff;
    }

    ul.nav li ul li a:hover,
    ul.nav li ul li.active a,
    header.sub ul.nav li > a:hover,
    header.sub ul.nav li.active > a {
        opacity: 0.8;
    }

    header.sub ul.nav li.parent::before,
    header.sub ul.nav li.parent::after {
        background: #1b1a33;
    }

    header.sub ul.nav li.active::before,
    header.sub ul.nav li.active::after,
    header.sub ul.nav li:hover::before,
    header.sub ul.nav li:hover::after {
        background: #4d34b9;
    }

    header.sub.toggle ul.nav > li > a {
        color: #fff;
    }

    header.sub.toggle ul.nav li.parent::before,
    header.sub.toggle ul.nav li.parent::after {
        background: #fff;
    }

    /* 菜单横向两排 */
    .separate-menu + ul.list-unstyled {
        width: 240px;
    }

    .separate-menu + ul.list-unstyled li {
        display: inline-block;
    }

    .separate-menu + ul.list-unstyled li a {
        width: 100px;
    }


    ul.eq-slideshow-items {
        min-height: 780px;
    }

    .hero-banner.home .title p {
        font-size: 20px;
        max-width: 50%;
    }

    .zizhi-sliders,
    .rongyu-sliders {
        min-height: 480px;
        padding-top: 60px;
    }

    .rongyu-sliders {
        padding-top: 110px;
    }

    .service-list {
        top: -150px;
        margin-bottom: -150px;
    }

    ul.service-steps {
        position: relative;
        min-height: 250px;
    }

    html[lang=en-gb] ul.service-steps {
        min-height: 900px;
    }

    ul.service-steps li {
        width: 16%;
        height: auto;
        min-height: auto;
    }

    ul.service-steps li img {
        padding: 43px;
        width: auto;
    }

    ul.service-steps li .step {
        width: 150px;
        padding-left: 0;
        text-align: center;
        position: absolute;
        top: 170px;
        left: 0;
        z-index: 1;
    }

    ul.service-steps li::before {
        width: 148px;
        height: 148px;
    }

    ul.service-steps li::after {
        top: 75px;
        left: 50%;
        width: 100px;
        height: 1px;
        transition: width 1.5s ease-in 1.5s;
    }

    ul.service-steps li:last-child::after {
        content: none;
    }

    ul.quality li {
        display: inline-block;
        width: 33.33%;
    }

    ul.quality li:nth-child(1) {
        margin-top: 80px;
    }

    ul.quality li:nth-child(3) {
        margin-top: -80px;
    }

    .grid-large {
        margin-left: -80px;
    }

    .grid-large > div {
        padding-left: 80px;
    }

    .eq-filter > li {
        width: 33.3333%;
    }


    ul.eq-list li h6 {
        max-width: 30%;
    }

    ul.list-inline {
        max-width: 100%;
    }

    .tags ul.list-inline li {
        display: inline-block;
    }

    .tags ul.list-inline li::after {
        content: '';
        padding: 0 5px;
        color: #999;
    }

    .tags ul.list-inline li:last-child::after {
        content: '';
    }

    .nav-list {
        width: auto;
        flex: auto;
        float: left\9; /* ie6~10 */
        width: 20%\9;
    }

    .clients .tab-content {
        height: 614px;
    }

    ul.logos {
        padding: 38px 55px;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    ul.logos li {
        margin: auto 6px;
    }

    ul.tab > li > a {
        height: 155px;
        line-height: 73px;
    }

    .translator ul.tab {
        border-radius: 10px;
        margin-top: 0;
    }

    .translator ul.tab > li > a {
        height: auto;
        line-height: 2;
    }


    .translator .tab-content {
        max-height: 500px;
        width: 1010px;
        padding: 0 30px;
    }

    ul.tab > li > a h6 {
        margin-top: 0;
    }

    ul.tab.col5 > li > a {
        height: auto;
        line-height: 40px;
    }

    ul.tab.col5 > li > a h6 {
        display: inline-block;
        padding-left: 5px;
        vertical-align: middle;
    }

    ul.news-tabs > li > a {
        height: auto;
        line-height: normal;
        padding: 10px 20px;
    }

    .mod-articlescategories {
        -ms-flex-pack: end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
    }

    .copyright,
    .color-scheme-toggle {
        margin-top: 60px;
    }


    ul.footer-accordion .accordion-title {
        cursor: auto;
    }

    ul.footer-accordion .accordion-title::before {
        content: none;
    }

    ul.footer-accordion .accordion-content {
        opacity: 1;
        visibility: visible;
        max-height: 100%;
    }

    .news-item .left.item-image a,
    .newsflash-image {
        width: 280px;
        height: 164px;
        float: left;
        margin-right: 36px;
        overflow: hidden;
        position: relative;
        display: block;
    }

    .news-item .pull-left.item-image a img,
    .newsflash-image img {
        position: absolute;
        position: relative\9;
        left: 50%;
        top: 50%;
        height: auto;
        width: 100%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .newsflash-image {
        width: 195px;
        height: 130px;
    }

    .home-service .eq-card-body {
        padding: 10px;
    }

}

@media (min-width: 1400px) {

}

@media (min-width: 1600px) {

}


@media (min-width: 1920px) {

}




.headone {
font-family: PingFangSC-S0pxibold;
font-weight: 600;
font-size: 16px;
color: #000000;
line-height: 26px;
display: block;
flex-direction:row;
margin-top: 20px;
}
.headfuwu {
font-family: PingFangSC-S0pxibold;
font-weight: 600;
font-size: 16px;
color: #000000;
line-height: 26px;
display: block;
flex-direction:row;
}

.headtwo {
width: 3px;
height: 20px;
background: #369BD6;

}
li::marker {
  content: '';
}

.relatedone {
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 16px;
color: #000000;
line-height: 30px;
}
.relatedtwo {
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 14px;
color: #A2A2A2;
line-height: 30px;
}

.biaoqian1 {

font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 16px;
color: #A2A2A2;
line-height: 30px;
}
.biaoqian2 {

padding-left: 8px;
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 14px;
line-height: 30px;
}

.eq-card-back {
height: 20px;
width: 100%;
background: #f6f9fb; 
}

.eq-list li:nth-child(2) {
background: #F0FAFF;
border-radius: 4px;
color: #369BD6;
margin-left: 12px;
}
.eq-list li:nth-child(3) {
background: #FFFBEB;
border-radius: 4px;
color: #FBD43D;
margin-left: 12px;
}
.eq-list li:nth-child(4) {
background: #FFF1F0;
border-radius: 4px;
color: #D66036;
margin-left: 12px;
}
.eq-list li:nth-child(4)>a {
color: #D66036;
}
.eq-list li:nth-child(5) {
background: #F0FFF7;
border-radius: 4px;
color: #36D69D;
margin-left: 12px;
}
.eq-list li:nth-child(5)>a {
color: #36D69D;
}
.eq-list li:nth-child(6) {
background: #F0FAFF;
border-radius: 4px;
color: #369BD6;
margin-left: 12px;
}
.eq-list li:nth-child(6)>a {
color: #369BD6;
}
.eq-list li:nth-child(7) {
background: #FFFBEB;
border-radius: 4px;
color: #FBD43D;
margin-left: 12px;
}
.eq-list li:nth-child(7)>a {
color: #FBD43D;
}
.page-biaoqian {
padding-bottom: 16px;  
}
.content-article {
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 16px;
color: #000000;
line-height: 30px;
}
.pagenavigation {
background: #f6f9fb;
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 16px;
color: #A2A2A2;
line-height: 30px;
} 
/*热门标签*/
.eq-list1 {
    padding: 0;
    margin: 0;
    list-style: none;
}
.eq-list1 li:nth-child(1) {
background: #F0FAFF;
border-radius: 4px;
margin-top: 12px;
}
.eq-list1 li:nth-child(1)>a {
color: #369BD6;
}
.eq-list1 li:nth-child(2) {
background: #FFFBEB;
border-radius: 4px;
margin-top: 12px;
}
.eq-list1 li:nth-child(2)>a {
color: #FBD43D;
}
.eq-list1 li:nth-child(3) {
background: #F0FFF7;
border-radius: 4px;
margin-top: 12px;
}
.eq-list1 li:nth-child(3)>a {
color: #36D69D;
}
.eq-list1 li:nth-child(4) {
background: #FFF1F0;
border-radius: 4px;
margin-top: 12px;
}
.eq-list1 li:nth-child(4)>a {
color: #D66036;
}
.eq-list1 li:nth-child(5) {
background: #F0FAFF;
border-radius: 4px;
margin-top: 12px;
}
.eq-list1 li:nth-child(5)>a {
color: #369BD6;
}
.eq-list1 li:nth-child(6) {
background: #FFFBEB;
border-radius: 4px;
margin-top: 12px;
}
.eq-list1 li:nth-child(6)>a {
color: #FBD43D;
}
.eq-list1 li:nth-child(7) {
background: #F0FAFF;
border-radius: 4px;
margin-top: 12px;
}
.eq-list1 li:nth-child(7)>a {
color: #369BD6;
}
.eq-list1 li:nth-child(8) {
background: #FFFBEB;
border-radius: 4px;
margin-top: 12px;
}
.eq-list1 li:nth-child(8)>a {
color: #FBD43D;
}
.eq-list1 li:nth-child(9) {
background: #F0FFF7;
border-radius: 4px;
margin-top: 12px;
}
.eq-list1 li:nth-child(9)>a {
color: #36D69D;
}


.eq-card-fuwu {
padding: 0 0;
padding-bottom: 20px;
}
.module-fuwu {
padding-bottom: 20px;
}
.eq-container-fuwu {
padding-left: 0px;
padding-right: 0px;
position: relative;
margin-left: auto;
margin-right: auto;
width: 1230px;
height: 100%;
max-width: 100%;
}
.grid-fuwu {
margin-left: 0px;
width: calc(100% - 20px);
}
.eq-card-fuwu1 {
background: #F0FAFF;
border-radius: 8px;
text-align: center;
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 14px;
color: #000000;
line-height: 20px;
}
.img-fuwu {
padding-top: 20px;
}

.remen-list {
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 14px;
color: #000000;
line-height: 22px;
}
.p-fuwu {
margin-top: 16px;
}
/* 内容页封装css */
.module-top {
margin-top: 20px; 
padding-bottom: 0px;
}
.module-bottom { 
padding: 0 0px !important;
}
.biaoti {
font-family: PingFangSC-S0pxibold;
font-weight: 600;
font-size: 20px !important;
line-height: 40px;
color: #000000;
margin-bottom: 4px;
margin-top: 20px;
}
.remen {
display:flex;
flex-wrap:nowrap;
margin-top: 12px;
}
.remen1 {
margin-top: 12px;
border: 1px solid #DDE6EA;
}
.remen-left {
margin-left: 12px;
}
.remen-image {
border-radius: 8px;
}
@media screen and (max-width: 1024px) { 
.none{display:none; }
}

@media screen and (min-width: 768px) { 
.mod-list{
  padding-left: 0px;
  justify-content: flex-end;
  }
}
.news-xinwen {
padding-bottom: 0px !important;
}
.module-neirong {
padding-top: 0px !important;
}
.remen-top {
padding-left: 20px !important;
}
.fuwu-neirong {
padding-bottom: 20px !important;
padding-left: 20px !important;
padding-right: 0px !important;
}
    .nav-list1 {
        width: auto;
        flex: auto;
        float: left\9; /* ie6~10 */
        width: 20%\9;
    }
    
    .nav-list2 {    
    list-style: none;
    padding: 0;
    margin: 0;    
     }   
.nav-list1 ul li {
    line-height: 36px;
}    
    